home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MTRECAL.PAK / CALCTHRD.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  975b  |  30 lines

  1. // calcthrd.h : interface of the controlling function of the recalc worker thread
  2. //              and of the CRecalcUIThread class
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. struct CRecalcThreadInfo
  15. {
  16.     int m_nInt1;
  17.     int m_nInt2;
  18.     int m_nSum;
  19.     HWND m_hwndNotifyRecalcDone;
  20.     HANDLE m_hEventStartRecalc;
  21.     HANDLE m_hEventRecalcDone;
  22.     HANDLE m_hEventKillRecalcThread;
  23.     HANDLE m_hEventRecalcThreadKilled;
  24.     int m_nRecalcSpeedSeconds;
  25.     HWND m_hwndNotifyProgress;
  26. };
  27.  
  28. // Controlling function for the worker thread.
  29. UINT RecalcThreadProc(LPVOID pParam /* CRecalcThreadInfo ptr */);
  30.